export declare enum LogLevel { Debug = 0, Info = 1, Warn = 2, Error = 3 } export declare class Logger { static debug(msg: string, ...args: any[]): void; static logInfo(msg: string, ...args: any[]): void; static warn(msg: string, ...args: any[]): void; static error(msg: string, ...args: any[]): void; } export declare function debug(msg: string, ...args: any[]): void; export declare function logInfo(msg: string, ...args: any[]): void; export declare function warn(msg: string, ...args: any[]): void; export declare function error(msg: string, ...args: any[]): void;